home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
bbs
/
wwbbs.lha
/
WWBBS
/
Rexx
/
Session.rexx
Wrap
OS/2 REXX Batch file
|
1994-09-18
|
462b
|
40 lines
/*
** $VER: Session.rexx 2.0 (21.8.94)
*/
options results
dummy
if local=0 then do
delay 150
end
ansidetect
if local=0 then do
logon
end
if local=1 then do
logon 'Sysop'
end
resultbuff = result
if resultbuff='NEWUSER' then do
/* New user routine */
register
rcbuff = rc
if rcbuff = 1 then do
edituser
editprefs
end
end
dologon
rcbuff = rc
if rcbuff = 1 then do
/* Regular session routine */
readnews new
runmenu 'Main'
dologoff
end